home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1998 July / EnigmA AMIGA RUN 29 (1998)(G.R. Edizioni)(IT)[!][issue 1998-07 & 08].iso / recent / mergea.rea < prev    next >
Text File  |  1998-06-26  |  3KB  |  75 lines

  1. Short:    Joins AudioIFF files. Source included.
  2. Author:   parsec@aljan.com.au (Erik Spåre)
  3. Uploader: parsec@aljan.com.au (Erik Spåre)
  4. Version:  1.0
  5. Type:     mus/misc
  6.  
  7. **********************************************************************
  8. **         MergeAIFF 1.0 Copyright © by Erik Spåre 1998             **
  9. **                       (Parsec/Phuture 303)                       **
  10. **********************************************************************
  11.  
  12. INTRODUCTION
  13.  
  14.     This simple program will let you join 2 or more (maximum 20) AIFF
  15.     (Audio IFF) files into one single file.
  16.  
  17.  
  18. BACKGROUND
  19.  
  20.     A friend recently lent me his CD-ROM and I started to sample my
  21.     favourite cd's, to have them mp3-packed. But I encountered
  22.     problems... When I started to transfer the songs (using OptyCDPlayer)
  23.     the operation would be aborted for no apparent reason, after 1-10
  24.     seconds. I found that this did not happen when I saved to the ramdisk.
  25.     But the tune I was trying to save was 170MB, and I only have 32MB of
  26.     RAM.
  27.  
  28.     I couldn't seem to find a program on Aminet that joined AIFF files,
  29.     only one called Join8SVX. I was forced to write my own...
  30.  
  31.  
  32. USAGE
  33.  
  34.     MergeAIFF <sourcefiles separated by spaces> AS <output file>
  35.  
  36.     For example, if you save a tune in 2 parts, with the beginning in
  37.     orb1.aiff and the end in orb2.aiff, you could write:
  38.  
  39.     MergeAIFF dh0:orb1.aiff ram:orb2.aiff AS dh0:orb.aiff
  40.  
  41.  
  42. REQUIREMENTS
  43.  
  44.     I'm not sure what version/s of the OS IFFParse library requires.
  45.     250kb will be allocated for a transfer buffer, but if that fails
  46.     half of that sum will be allocated. If that also fails, half of that
  47.     sum etc. The smallest allowed buffer is 32kb.
  48.  
  49.  
  50. LIMITATIONS
  51.  
  52.     The only chunks that are recognized and copied are COMM (which
  53.     contains info about the sound) and SSND (containing the sound
  54.     itself). Any other chunk will be disregarded (I'm not sure there
  55.     are any, I just wrote this program to suit _my_ needs).
  56.  
  57.     The two fields "offset" and "blocksize" in the SSND chunk must be
  58.     zero. Reading IFF specs are very boring, so I skipped these two
  59.     when 1: I noticed that Opty did not us them, and 2: I read that they
  60.     are rarely used. If one of your sourcefiles would happen to use
  61.     these fields, this program will refuse to merge them.
  62.  
  63.  
  64. FEATURES
  65.  
  66.     * To make up for above mentioned limitations you'll find the sourcecode
  67.       (in C) included. If you make any improvements then please contact me
  68.       so that we can use them in the next release.
  69.  
  70.     * It is free.
  71.  
  72.     * If your computer tend to crash when you're saving a large song to
  73.       your hd, you can save via the RAM-disk and then use this program.
  74.       Healthier for the drive...
  75.